home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / src / ftruncate.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-19  |  145 b   |  9 lines

  1. #include "amiga.h"
  2. #include <amiga/ioctl.h>
  3.  
  4. int ftruncate(int fd, off_t length)
  5. {
  6.   chkabort();
  7.   return ioctl(fd, _AMIGA_TRUNCATE, &length);
  8. }
  9.